LanguageExt.Core

LanguageExt.Core Prelude Value parsing

Contents

class Prelude Source #

Methods

method Option<A> convert <A> (object? value) Source #

method K<M, A> convert <M, A> (object? value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<long> parseLong (string value) Source #

method K<M, long> parseLong <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<int> parseInt (string value) Source #

method K<M, int> parseInt <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<int> parseInt (string value, int fromBase) Source #

method K<M, int> parseInt <M> (string value, int fromBase) Source #

where M : MonoidK<M>, Applicative<M>

method Option<short> parseShort (string value) Source #

method K<M, short> parseShort <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<char> parseChar (string value) Source #

method K<M, char> parseChar <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<sbyte> parseSByte (string value) Source #

method K<M, sbyte> parseSByte <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<byte> parseByte (string value) Source #

method K<M, byte> parseByte <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<ulong> parseULong (string value) Source #

method K<M, ulong> parseULong <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<uint> parseUInt (string value) Source #

method K<M, uint> parseUInt <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<ushort> parseUShort (string value) Source #

method K<M, ushort> parseUShort <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<float> parseFloat (string value) Source #

method K<M, float> parseFloat <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<double> parseDouble (string value) Source #

method K<M, double> parseDouble <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<decimal> parseDecimal (string value) Source #

method K<M, decimal> parseDecimal <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<bool> parseBool (string value) Source #

method K<M, bool> parseBool <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<Guid> parseGuid (string value) Source #

method K<M, Guid> parseGuid <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<DateTime> parseDateTime (string value) Source #

method K<M, DateTime> parseDateTime <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<DateTimeOffset> parseDateTimeOffset (string value) Source #

method K<M, DateTimeOffset> parseDateTimeOffset <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<TimeSpan> parseTimeSpan (string value) Source #

method K<M, TimeSpan> parseTimeSpan <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>

method Option<TEnum> parseEnum <TEnum> (string value) Source #

where TEnum : struct

method K<M, TEnum> parseEnum <M, TEnum> (string value) Source #

where TEnum : struct
where M : MonoidK<M>, Applicative<M>

method Option<TEnum> parseEnumIgnoreCase <TEnum> (string value) Source #

where TEnum : struct

method K<M, TEnum> parseEnumIgnoreCase <M, TEnum> (string value) Source #

where TEnum : struct
where M : MonoidK<M>, Applicative<M>

method Option<IPAddress> parseIPAddress (string value) Source #

method K<M, IPAddress> parseIPAddress <M> (string value) Source #

where M : MonoidK<M>, Applicative<M>